nl.ivojonker.icn.configuration
Class ConfigurationEntry

java.lang.Object
  extended by nl.ivojonker.icn.configuration.ConfigurationEntry

public class ConfigurationEntry
extends java.lang.Object

A model class for storing a configuration entry.

Author:
nl.ivojonker

Field Summary
private  java.lang.String description
           
private  java.lang.Boolean evaluate
           
private  java.lang.Boolean expose
           
private  java.lang.String key
           
private  java.lang.String value
           
 
Constructor Summary
ConfigurationEntry(java.lang.String key, java.lang.String value, java.lang.Boolean evaluate, java.lang.Boolean expose, java.lang.String description)
           
 
Method Summary
 java.lang.String getDescription()
           
 java.lang.Boolean getEvaluate()
           
 java.lang.Boolean getExpose()
           
 java.lang.String getKey()
           
 java.lang.String getValue()
           
 void setDescription(java.lang.String newDescription)
           
 void setEvaluate(java.lang.Boolean evaluate)
           
 void setExpose(java.lang.Boolean expose)
           
 void setKey(java.lang.String key)
           
 void setValue(java.lang.String value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

key

private java.lang.String key

value

private java.lang.String value

description

private java.lang.String description

evaluate

private java.lang.Boolean evaluate

expose

private java.lang.Boolean expose
Constructor Detail

ConfigurationEntry

public ConfigurationEntry(java.lang.String key,
                          java.lang.String value,
                          java.lang.Boolean evaluate,
                          java.lang.Boolean expose,
                          java.lang.String description)
Method Detail

getKey

public java.lang.String getKey()

setKey

public void setKey(java.lang.String key)

getValue

public java.lang.String getValue()

setValue

public void setValue(java.lang.String value)

getEvaluate

public java.lang.Boolean getEvaluate()

setEvaluate

public void setEvaluate(java.lang.Boolean evaluate)

getExpose

public java.lang.Boolean getExpose()

setExpose

public void setExpose(java.lang.Boolean expose)

getDescription

public java.lang.String getDescription()

setDescription

public void setDescription(java.lang.String newDescription)